home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C++ für Kids
/
C++ for kids.iso
/
Buch
/
Bild1.h
< prev
next >
Wrap
C/C++ Source or Header
|
1999-01-04
|
1KB
|
36 lines
//---------------------------------------------------------------------------
#ifndef Bild1H
#define Bild1H
//---------------------------------------------------------------------------
#include <vcl\Classes.hpp>
#include <vcl\Controls.hpp>
#include <vcl\StdCtrls.hpp>
#include <vcl\Forms.hpp>
#include "Movie2.h"
#include <vcl\ExtCtrls.hpp>
#include <vcl\Dialogs.hpp>
#include <vcl\Menus.hpp>
//---------------------------------------------------------------------------
class TForm1 : public TForm
{
__published: // IDE-verwaltete Komponenten
TOpenDialog *OpenDialog1;
TMovie *Movie1;
TBevel *Bevel1;
TPopupMenu *PopupMenu1;
TMenuItem *Oeffnen1;
TButton *Button1;
void __fastcall FormCreate(TObject *Sender);
void __fastcall Oeffnen1Click(TObject *Sender);
void __fastcall Button1Click(TObject *Sender);
private: // Benutzer-Deklarationen
public: // Benutzer-Deklarationen
__fastcall TForm1(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern TForm1 *Form1;
//---------------------------------------------------------------------------
#endif